home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-585.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  79 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15633);
  11.  script_version ("$Revision: 1.2 $");
  12.  script_cve_id("CAN-2004-0409");
  13.  
  14.  name["english"] = "RHSA-2004-585: xchat";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   An updated xchat package that fixes a stack buffer overflow in the SOCKSv5
  21.   proxy code.
  22.  
  23.   X-Chat is a graphical IRC chat client for the X Window System.
  24.  
  25.   A stack buffer overflow has been fixed in the SOCKSv5 proxy code.
  26.   An attacker could create a malicious SOCKSv5 proxy server in such a way
  27.   that X-Chat would execute arbitrary code if a victim configured X-Chat to
  28.   use the proxy. The Common Vulnerabilities and Exposures project
  29.   (cve.mitre.org) has assigned the name CAN-2004-0409 to this issue.
  30.  
  31.   Users of X-Chat should upgrade to this erratum package, which contains a
  32.   backported security patch, and is not vulnerable to this issue.
  33.  
  34.  
  35.  
  36.  
  37. Solution : http://rhn.redhat.com/errata/RHSA-2004-585.html
  38. Risk factor : High';
  39.  
  40.  script_description(english:desc["english"]);
  41.  
  42.  summary["english"] = "Check for the version of the xchat packages";
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  48.  family["english"] = "Red Hat Local Security Checks";
  49.  script_family(english:family["english"]);
  50.  
  51.  script_dependencies("ssh_get_info.nasl");
  52.  
  53.  script_require_keys("Host/RedHat/rpm-list");
  54.  exit(0);
  55. }
  56.  
  57. include("rpm.inc");
  58. if ( rpm_check( reference:"xchat-1.8.9-1.21as.2", release:"RHEL2.1") )
  59. {
  60.  security_hole(0);
  61.  exit(0);
  62. }
  63. if ( rpm_check( reference:"xchat-2.0.4-4.EL", release:"RHEL3") )
  64. {
  65.  security_hole(0);
  66.  exit(0);
  67. }
  68.  
  69. if ( rpm_exists(rpm:"xchat-", release:"RHEL2.1") )
  70. {
  71.  set_kb_item(name:"CAN-2004-0409", value:TRUE);
  72. }
  73. if ( rpm_exists(rpm:"xchat-", release:"RHEL3") )
  74. {
  75.  set_kb_item(name:"CAN-2004-0409", value:TRUE);
  76. }
  77.  
  78. set_kb_item(name:"RHSA-2004-585", value:TRUE);
  79.